home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Emulators / v2600 / Source.lha / Source / keybdrv.h < prev    next >
C/C++ Source or Header  |  1997-01-27  |  188b  |  22 lines

  1. #ifndef KEYBDRV_H
  2. #define KEYBDRV_H
  3.  
  4. void
  5. keybdrv_close (void);
  6.  
  7. int
  8. keybdrv_init (void);
  9.  
  10. void
  11. keybdrv_setmap(void);
  12.  
  13. int
  14. keybdrv_pressed(int key);
  15.  
  16. void
  17. keybdrv_update (void);
  18.  
  19. #endif
  20.  
  21.  
  22.